home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Development Tools & Languages / DTSCPlusLibrary / Sources / Menu.h < prev    next >
Encoding:
Text File  |  1993-01-14  |  1.5 KB  |  56 lines  |  [TEXT/MPS ]

  1. /* _________________________________________________________________________________________________________ //
  2.   Copyright © 1992-93 Apple Computer, Inc. All rights reserved.
  3.   Macintosh Developer Technical Support.C++ Macintosh Toolbox Framework.
  4.   Programmer: Kent Sandvik
  5.   Date: 12/21/92
  6.   Revision comments are at the end of this file.
  7.   ---
  8.   TMenubar is a simple object that keeps track of the menubar     
  9.   TMenu.cp contains TMenubar class definitions.
  10.   _________________________________________________________________________________________________________ */
  11.  
  12. // Declare label for this header file
  13. #ifndef _MENU_
  14. #define _MENU_
  15.  
  16. // HEADER FILES
  17. #ifndef _DTSCPLUSLIBRARY_
  18. #include "DTSCPlusLibrary.h"
  19. #endif
  20.  
  21. #include "ApplicationResources.h"
  22.  
  23. // TOOLBOX HEADER FILES
  24. #ifndef __MENUS__
  25. #include <Menus.h>
  26. #endif
  27.  
  28.  
  29. // _________________________________________________________________________________________________________ //
  30. //    TMenubar Class Interface.
  31. class TMenubar
  32. // Simple class that keeps track of the application menu bar
  33. {
  34. public:
  35.     // CONSTRUCTORS AND DESTRUCTORS
  36.     TMenubar(short ResourceID = mAppMBAR);        // construct a TMenubar
  37.     virtual~ TMenubar();                        // default destructor
  38.  
  39.     // MAIN INTERFACE
  40.  
  41.     // FIELDS
  42. protected:
  43. };
  44.  
  45.  
  46. #endif
  47.  
  48. // _________________________________________________________________________________________________________ //
  49.  
  50.  
  51. /*    Change History (most recent last):
  52.   No        Init.    Date        Comment
  53.   1            khs        12/21/92    New file
  54.   2            khs        1/7/93        Cleanup
  55. */
  56.